home *** CD-ROM | disk | FTP | other *** search
- /* window.h
-
- Michael Bishop - August 21 1996
- Nick Thompson
- (c)1994-96 Apple Computer Inc., All Rights Reserved
-
- */
- #ifndef _BP_WINDOW_H_
- #define _BP_WINDOW_H_
-
- #include <QuickDraw.h>
-
- #include "PickOne_document.h"
-
-
- enum {
- kWindowResID = 6347
- } ;
-
- WindowPtr Window_New(void) ;
- void Window_Dispose(WindowPtr theWindow) ;
-
- DocumentHdl Window_GetDocument( WindowPtr theWindow);
- int Window_SetDocument( WindowPtr theWindow, DocumentHdl theDocument);
- WindowPtr Window_GetNextWindow(WindowPtr theWindow);
-
- void Window_Update( WindowPtr window );
- void Window_Activate(WindowPtr theWindow, short activate);
- void Window_DoContent (WindowPtr theWindow, EventRecord *event);
- void Window_DestroyAll(void);
-
- #endif